compress/flate.compressor.hashOffset (field)
13 uses
compress/flate (current package)
deflate.go#L101: hashOffset int
deflate.go#L134: d.hashOffset += windowSize
deflate.go#L135: if d.hashOffset > maxHashOffset {
deflate.go#L136: delta := d.hashOffset - 1
deflate.go#L137: d.hashOffset -= delta
deflate.go#L220: *hh = uint32(di + d.hashOffset)
deflate.go#L274: i = int(d.hashPrev[i&windowMask]) - d.hashOffset
deflate.go#L370: d.hashOffset = 1
deflate.go#L422: *hh = uint32(d.index + d.hashOffset)
deflate.go#L433: if d.chainHead-d.hashOffset >= minIndex &&
deflate.go#L436: if newLength, newOffset, ok := d.findMatch(d.index, d.chainHead-d.hashOffset, minMatchLength-1, lookahead); ok {
deflate.go#L470: *hh = uint32(index + d.hashOffset)
deflate.go#L620: d.hashOffset = 1
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |